home *** CD-ROM | disk | FTP | other *** search
/ You're the Director / You're The Director.iso / pc / pcf / ds.dir / 00268_Old Stop Button.ls < prev    next >
Encoding:
Text File  |  1995-10-08  |  335 b   |  18 lines

  1. on mouseUp
  2.   global prev, gSound
  3.   if prev > 0 then
  4.     set prev to 0
  5.     set the visible of sprite 19 to 0
  6.     repeat with x = 13 to 18
  7.       set the visible of sprite x to 1
  8.       puppetSprite(x, 0)
  9.     end repeat
  10.   end if
  11.   set the soundLevel to gSound
  12.   puppetSound("OPEN.AIF")
  13.   updateStage()
  14.   stopQT()
  15.   setbar()
  16.   go("no")
  17. end
  18.